home *** CD-ROM | disk | FTP | other *** search
/ CD/PC Actual 76 / DVD Actual 1 Marzo 2003.iso / Trial / TurboCAD 7.1 Pro / Data.Cab / F24366_QueryHelpDlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2000-11-10  |  1.0 KB  |  44 lines

  1. // QueryHelpDlg.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "ltsample.h"
  6. #include "QueryHelpDlg.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CQueryHelpDlg dialog
  16.  
  17.  
  18. CQueryHelpDlg::CQueryHelpDlg(CWnd* pParent /*=NULL*/)
  19.     : CDialog(CQueryHelpDlg::IDD, pParent)
  20. {
  21.     //{{AFX_DATA_INIT(CQueryHelpDlg)
  22.     //}}AFX_DATA_INIT
  23.     m_cstrHelpString.LoadString(IDS_QUERYHELPSTRING);
  24. }
  25.  
  26.  
  27. void CQueryHelpDlg::DoDataExchange(CDataExchange* pDX)
  28. {
  29.     CDialog::DoDataExchange(pDX);
  30.     //{{AFX_DATA_MAP(CQueryHelpDlg)
  31.     DDX_Text(pDX, IDC_HELPEDIT, m_cstrHelpString);
  32.     //}}AFX_DATA_MAP
  33. }
  34.  
  35.  
  36. BEGIN_MESSAGE_MAP(CQueryHelpDlg, CDialog)
  37.     //{{AFX_MSG_MAP(CQueryHelpDlg)
  38.         // NOTE: the ClassWizard will add message map macros here
  39.     //}}AFX_MSG_MAP
  40. END_MESSAGE_MAP()
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CQueryHelpDlg message handlers
  44.